Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Fight Dealer
University of Caille Gallente Federation
0
|
Posted - 2013.06.09 00:26:00 -
[1] - Quote
Entity wrote:Alright, Odyssey updates pushed.
Have to figure out some way to post the binaries though, since Github stopped providing a downloads section. So for now, you'll have to build it yourself.
Particularly noteworthy are the changes to the FSD loader. Odyssey features a new one that is incompatible with the Retribution one, and provides a slightly different interface to the data. If your program uses any of the FSD based data, your code may require updating.
Important note for those using stripped EVE installs just to satisfy Reverence's needs: Reverence now requires EVE's lib folder to be present, as it needs one of the python libraries for decoding FSD (in particular; fsdSchemas-1.0.2.zip).
Could you please make a binary Windows installer (32-bit) and upload it to just any file hosting? I dont know how to build Reverence manually, not a Python developer :( |

Fight Dealer
University of Caille Gallente Federation
0
|
Posted - 2013.06.09 16:05:00 -
[2] - Quote
Btw, datadump.py produces no output. I 've set both EVE and output locations in script. |

Fight Dealer
University of Caille Gallente Federation
0
|
Posted - 2013.06.10 09:46:00 -
[3] - Quote
Actually, fixing the datadump.py example was easy. I changed the following basing on what was mentioned earlier in this thread:
From:
cachedObjects = c.LoadCacheFolder("BulkData") cachedObjects2 = c.LoadCacheFolder("CachedObjects")
To:
path1 = os.path.join(c.machocachepath,"BulkData") cachedObjects = c.LoadCacheFolder(path1)
path2 = os.path.join(c.machocachepath,"CachedObjects") cachedObjects2 = c.LoadCacheFolder(path2)
And now this example spits some XMLs, so looks like Reverence itself works.
But, my main issue is about Autodumper launching Reverence. It refuces to work with regard to some locking/multithreading (details in my first post in this thread).
Do you have any ideas of what can be wrong about the threading?
If not, could you please provide me with some short code snippet of how to correctly get market orders (not current character's orders, but just dump of any market page visited in Market window) from cache using Reverence (so I can spit them to XML or whatever)?
Thanks in advance. |
|
|